home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000356_news@columbia.edu _Sat Jan 27 08:15:12 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id IAA06925 for <kermit.misc@watsun>; Sat, 27 Jan 1996 08:15:11 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id IAA11989 for kermit.misc@watsun; Sat, 27 Jan 1996 08:15:08 -0500 (EST)
  4. Path: news.columbia.edu!panix!imci3!imci4!imci5!suck-feed.internetmci.com!news.internetMCI.com!newsfeed.internetmci.com!xmission!news.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Terminal emulation in Kermit
  8. Message-ID: <1996Jan26.112054.72415@cc.usu.edu>
  9. Date: 26 Jan 96 11:20:54 MDT
  10. References: <4eavbb$148b@news.cuny.edu>
  11. Organization: Utah State University
  12. Lines: 51
  13.  
  14. In article <4eavbb$148b@news.cuny.edu>, Jozef Dodziuk <jozek@hodge.gc.cuny.edu> writes:
  15. > I am using kermit to connect an old AT via a direct serial line to a computer
  16. > running Linux.  Everything works fine except that I do not get reversed video
  17. > on the screen (monochrome monitor driven by a Hercules card).  I suspect that
  18. > SET TERMINAL COLOR with some parameters might do the trick, but I do not know 
  19. > what parameters to use.  Any help will be appreciated.
  20. -------
  21.     I recommend leaving SET TERM COLOR strictly alone when employing
  22. a mono display system. Recall that the host has to command reverse video,
  23. or you can say SET TERM SCREEN NORMAL or REVERSE (rather drastic).
  24.     I don't have Linux, but watching over shoulders of others I gain
  25. the impression that it dearly loves to play with colors directly rather
  26. than a "reverse video" command.
  27.     You can experiment locally with commands from this clipping from file
  28. msvibm.vt:
  29.  
  30.  CSI ? Ps;...;Ps h  SM        Set DEC mode, see table below
  31.  CSI ? Ps;...;Ps l  RM        Reset DEC mode, see table below
  32.          Ps     Mnemonic       Mode           Set (h)        Reset (l)
  33.          0                     error (ignored)
  34.          1      DECCKM         cursor keys    application    cursor/numeric
  35.          2      DECANM         ANSI          VT320/VT102    VT52
  36.          3      DECCOLM        Columns        +132 col       80 col
  37.          4      DECSCLM       *Scrolling      smooth         jump
  38.          5      DECSCNM        Screen, whole  reverse video  normal
  39.          6      DECOM          Origin         stay in margins ignore margins
  40.          7      DECAWM         Autowrap       on             off
  41.          8      DECARM        *Autorepeat     on             off
  42.          9      DECINLM       *Interlace      on             off
  43.          18     DECPFF         Printer term   Form Feed         none
  44.          19     DECPEX         Printer extent screen         scrolling region
  45.      25    DECTCEM           Cursor          visible         invisible
  46.          34     DECRLM         Writing        right to left  left to right
  47.      35    DECHEBM     +++Invoke macro:  KEYBOARDS      KEYBOARDR
  48.      36    DECHEM     ++++Hebrew encoding Multinational  Hebrew NRC
  49.          38     n/a            Graphics (Tek) ++graphics     text
  50.      42    DECNRCM           Nat Repl Char  enable         disable
  51.      66    DECNKM           Numeric keypad application    numeric
  52.      68    DECKBUM          *Typewriter     data process   typewriter
  53.                            + Horizontal scrolling. See comments on EGA boards.
  54.                           ++ Ignored if DISABLE TEK has been given.
  55.              +++ VT320 DEC supplements for Hebrew systems adapted
  56.                  from VT420-Hebrew terminals, invokes a new
  57.                  keyboard map. Kermit invokes macros above.
  58.             ++++ Macros TerminalR/S have been removed in v3.13.
  59.     (SET TERMINAL CHARACTER-SET <country> must be given to employ DEC
  60.     National Replacement Characters. Enabling NRCs replaces    G0..G3 chars
  61.     sets with the NRC set and disables 8-bit controls; disabling only
  62.     re-enables 8-bit controls.)
  63.  
  64.     Joe D.